* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vw;
    background-image: url(../images/1190847_820.jpg);
    background-repeat: repeat-y;
    background-position: center;
    background-size: cover;
    position: relative;
}

.header {
    font-family: audiowide;
    text-align: center;
    position: relative;
    margin: auto;
    cursor: default;
    background-color: rgba(255, 255, 255, 0.258);
}

h2.header {
    font-size: 6vw;
    padding-top: 2%;
}

h3.header {
    font-size: 3vw;
    padding-bottom: 3%;
}

.flip-card {
    background-color: transparent;
    width: 40vw;
    height: 40vw;
    perspective: 1000px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -20vw;
    margin-right: -20vw;
}

.inner-card {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    justify-content: center;
}

.flip-card:hover .inner-card {
    transform: rotateY(180deg);
}

.front-card, .back-card {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.front-card {
    background-color: rgb(255, 255, 255);
    color: black;
}

.back-card {
    background-color: dodgerblue;
    color: white;
    transform: rotateY(180deg);
    /* align-items: center;
    display: flex;
    justify-content: center; */
}

.back-card p {
    position: relative;
    font-size: 2vw;
    margin-top: 7em;
    text-align: center;
    margin-bottom: 1em;
    cursor: default;
}

.back-card a{
    display: inline-block;
    padding: 0.5em;
    text-decoration: none;
    font-weight: 900;
    border: 3px solid rgb(7, 3, 117);
    color: rgb(7, 3, 117);
    font-size: 2vw;
}

.back-card a:hover {
    background-color: rgb(7, 3, 117);
    color: #bbb;
    box-shadow: 5px 5px rgb(0, 0, 0);
    transition: 0.5s;
}